home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / gdb / foo / MIPS-NOTES < prev    next >
Encoding:
Text File  |  1991-07-02  |  787 b   |  22 lines

  1. This is the alpha release of the gdb port to MIPS-based machines.
  2. Only the (little-endian) DECstation3100 has been tested.
  3.  
  4. Here I will try to list known problems:
  5.  
  6. Calling a function in the debugger (as in 'print f(x)') normally
  7. works correctly. One known exception is if you pass a structure
  8. argument whose sizeof > 4. Currently, gdb will align it on
  9. an 8-byte boundary, while the compiler while depend on
  10. the alignment needed by the fields. (Unfortunately, the
  11. distributed varargs.h and stdarg.h are inconsistent with
  12. mips' compiler!)
  13.  
  14. Fortran debugging could be made nicer, but a lot of that is a
  15. problem with the implementation-independent gdb.
  16.  
  17. Code in include files is handled poorly (missing line numbers).
  18.  
  19. Lots of testing is needed.
  20. E.g. is IN_SIGTRAMP (in infrun.c) correct?
  21.  
  22.